home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Technotools
/
Technotools (Chestnut CD-ROM)(1993).ISO
/
lang_asm
/
asm_kit
/
skelcom.asm
< prev
next >
Wrap
Assembly Source File
|
1984-07-17
|
446b
|
19 lines
PAGE ,132 ; (CTRL-OH) IBM PC PRINTER CONDENSED MODE
TITLE SKELCOM - SAMPLE.COM STYLE ROUTINE
CSEG SEGMENT PARA PUBLIC 'CODE'
ASSUME CS:CSEG,DS:CSEG,SS:CSEG,ES:CSEG ;ALREADY SET BY DOS LOADER
ORG 100H ;SKIP TO END OF THE PSP
ENTPT: JMP START ;COM FILE ENTRY ALWAYS AT 100H
;insert constants and work area (data) here
START PROC NEAR
;insert code here
RET ;NEAR RETURN TO DOS
START ENDP
CSEG ENDS
END ENTPT